home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacApp Release 10 / MacApp Release 10 - HD Ready / Examples / A-Z / Q / QuickDraw3D / Simple QuickDraw 3D View / UDefaultDocument.h < prev    next >
Encoding:
Text File  |  1996-04-03  |  771 b   |  36 lines  |  [TEXT/MPS ]

  1. // UDefaultDocument.h
  2. // Copyright © 1991-96 by Apple Computer, Inc. All rights reserved. 
  3.  
  4. #ifndef __UDefaultDocument__
  5. #define __UDefaultDocument__
  6.  
  7. #ifndef __UDOCUMENT__
  8. #include "UDocument.h"
  9. #endif
  10.  
  11. #ifndef __UQD3DViewer__
  12. #include "UQD3DViewer.h"
  13. #endif
  14.  
  15. //----------------------------------------------------------------------------------------
  16. // TDefaultDocument
  17. //----------------------------------------------------------------------------------------
  18.  
  19. class TDefaultDocument: public TDocument
  20. {
  21.     MA_DECLARE_CLASS;
  22.     
  23.   public:
  24.     TDefaultDocument(); 
  25.         // Constructor
  26.     virtual ~TDefaultDocument();
  27.         // Destructor
  28.     virtual void  IDefaultDocument();
  29.     virtual void  DoMakeViews(Boolean forPrinting); // Override
  30.  
  31.     private:
  32.     TQD3DViewerView* fQD3DView1;
  33. };
  34.  
  35. #endif
  36.